added some development tools
[windows-sources.git] / developer / Samples / NET 4.6 / Samples for Parallel / ParallelExtensionsExtras / ParallelAlgorithms / ParallelAlgorithms_Common.cs
blob50ddaf41866b628bae055557fcc9511ce165c76e
1 //--------------------------------------------------------------------------
2 //
3 // Copyright (c) Microsoft Corporation. All rights reserved.
4 //
5 // File: ParallelAlgorithms_Common.cs
6 //
7 //--------------------------------------------------------------------------
9 using System.Threading.Tasks;
11 namespace System.Threading.Algorithms
13 /// <summary>
14 /// Provides parallelized algorithms for common operations.
15 /// </summary>
16 public static partial class ParallelAlgorithms
18 // Default, shared instance of the ParallelOptions class. This should not be modified.
19 private static ParallelOptions s_defaultParallelOptions = new ParallelOptions();